16 lines
359 B
C#
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; }
|
|
}
|
|
}
|