Add project files.
This commit is contained in:
12
ConstructorApp.EntityLayer/Entities/CompanyInfoVideo.cs
Normal file
12
ConstructorApp.EntityLayer/Entities/CompanyInfoVideo.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ConstructorApp.EntityLayer.Entities
|
||||
{
|
||||
public class CompanyInfoVideo
|
||||
{
|
||||
public int CompanyInfoVideoID { get; set; }
|
||||
[StringLength(500)]
|
||||
[Required]
|
||||
public string? VideoUrl { get; set; } // Tanıtım videosu için URL (YouTube, mp4 vs.)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user