PIAPS_CW/Contracts/SearchModels/UserSearchModel.cs

15 lines
336 B
C#
Raw Normal View History

2024-06-04 11:57:28 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
2024-06-22 21:15:11 +04:00
public class UserSearchModel
{
public Guid? Id { get; set; }
public string? Email { get; set; }
public bool? OnlyImportantMails { get; set; }
}
2024-06-04 11:57:28 +04:00
}