API_Finshark/Models/Comment.cs
Marc Wieland da8f1f8ba3 Init
2025-09-26 08:51:10 +02:00

19 lines
502 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace api.Models
{
public class Comment
{
public int Id { get; set; }
public string Title { get; set; } = string.Empty;
public string Content { get; set; } = string.Empty;
public DateTime CreatedOn { get; set; }
public int? StockId { get; set; }
//Navigation property
public Stock? Stock { get; set; }
}
}