15 lines
301 B
C#
Raw Normal View History

2024-02-12 12:46:44 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TypographyContracts.SearchModels
2024-02-12 12:46:44 +04:00
{
public class PrintedSearchModel
2024-02-12 12:46:44 +04:00
{
public int? Id { get; set; }
public string? PrintedName { get; set; }
2024-02-12 12:46:44 +04:00
}
}