Files
2026-06-02 20:48:16 +03:30

12 lines
279 B
C#

using Complex.Domain.Commons;
namespace Complex.Domain.Entities
{
public class Poster:BaseEntity<int>
{
public string RegisterMobileNumber { set; get; }
public bool IsActive { set; get; } = false;
public string ImagePath { set; get; }
}
}