2023-04-22 15:12:21 +04:00
|
|
|
|
using DataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Contracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class StatusBM : IStatus
|
|
|
|
|
{
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2023-05-06 02:31:48 +04:00
|
|
|
|
public string oldTitle { get; set; } = string.Empty;
|
2023-04-22 15:12:21 +04:00
|
|
|
|
public int Id {get; set;}
|
|
|
|
|
}
|
|
|
|
|
}
|