14 lines
286 B
C#
Raw Normal View History

2024-04-27 23:49:22 +04:00
namespace TravelAgencyContracts.SearchModels
{
public class ExcursionGroupSearchModel
{
public int? Id { get; set; }
public string? ExcursionGroupName { get; set; }
public int? UserId { get; set; }
public int? GuideId { get; set; }
}
}