6 lines
115 B
C#
Raw Permalink Normal View History

2023-04-06 17:38:35 +04:00
namespace HotelDataModels.Models;
2023-04-06 17:52:12 +04:00
public interface ICleaningInstrumentsModel : IId
2023-04-06 17:38:35 +04:00
{
string Type { get; }
}