17 lines
385 B
C#
Raw Permalink Normal View History

using DataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.BindingModels
{
public class PlaceBM : IPlace
{
public string Title { get; set; } = string.Empty;
2023-05-06 01:31:48 +03:00
public string oldTitle { get; set; } = string.Empty;
public int Id { get; set; }
}
}