Coursach/Course/DataModels/Models/IWorkshopModel.cs

10 lines
184 B
C#
Raw Normal View History

2024-04-27 12:35:20 +04:00
namespace DataModels.Models
2024-04-03 13:36:27 +04:00
{
public interface IWorkshopModel : IId
{
string Title { get; }
string Address { get; }
string Director { get; }
}
}