PIbd-22_Isaeva_A.I._FishFac.../FishFactoryContracts/SearchModels/CannedSearchModel.cs
2024-02-05 19:09:54 +04:00

15 lines
300 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FishFactoryContracts.SearchModels
{
public class CannedSearchModel
{
public int? Id { get; set; }
public string? CannedName { get; set; }
}
}