Files
2025-05-01 15:18:30 +03:00

16 lines
359 B
C#

using System.ComponentModel.DataAnnotations;
namespace ConstructorApp.EntityLayer.Entities
{
public class Reference
{
[Key]
public int ReferenceID { get; set; }
[StringLength(50)]
[Required]
public string? LogoUrl { get; set; }
[StringLength(50)]
public string? WebUrl { get; set; }
}
}