2025-02-01 19:30:30 +01:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
|
|
namespace WebAPI.Models;
|
|
|
|
|
|
|
|
|
|
|
|
public class DataInbox
|
|
|
|
|
|
{
|
|
|
|
|
|
#region Properties
|
|
|
|
|
|
[Key]
|
|
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
|
|
[StringLength(50)]
|
|
|
|
|
|
public required string Name { get; init; }
|
|
|
|
|
|
[StringLength(50)]
|
|
|
|
|
|
public required string Source { get; set; }
|
|
|
|
|
|
[StringLength(int.MaxValue)]
|
|
|
|
|
|
public required string Data { get; init; }
|
|
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
|
|
#endregion
|
2024-07-03 19:03:52 +02:00
|
|
|
|
}
|