Add project files.
This commit is contained in:
15
ConstructorApp.EntityLayer/Entities/Reference.cs
Normal file
15
ConstructorApp.EntityLayer/Entities/Reference.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user