Files
CouchLog/WatchLog/Data/Database/Global/StreamingPlatform.cs
2025-04-22 00:59:47 +02:00

22 lines
468 B
C#

using System.ComponentModel.DataAnnotations;
namespace WatchLog.Data
{
public class StreamingPlatform
{
[Key]
public int Id { get; set; }
[Required]
[MaxLength(100)]
public required string Name { get; set; }
[Required]
public string? PicturePath { get; set; }
[Required]
public required DateTime CreationTime { get; set; }
public DateTime? LastChange { get; set; }
}
}