9 lines
147 B
C#
9 lines
147 B
C#
namespace AutobusApi.Domain.Common;
|
|
|
|
public class EntityBase
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public bool IsDeleted { get; set; } = false;
|
|
}
|