13 lines
340 B
C#
13 lines
340 B
C#
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.)
|
||
}
|
||
}
|