12 lines
279 B
C#
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; }
|
|
}
|
|
}
|