namespace HotelPms.Share.Data; public interface IRecord { object Parent { get; set; } void CopyTo(object dest); string? ToString(); void Clear(); }