text-matcher/src/Nocr.TextMatcher.Api.Contracts/TextMatches/Dto/CreateTextMatchRequest.cs
2024-03-22 00:38:37 +04:00

16 lines
369 B
C#

using Nocr.TextMatcher.AppServices.Contracts.TextMatches;
namespace Nocr.TextMatcher.Api.Contracts.TextMatches.Dto;
public class CreateTextMatchRequest
{
public long UserId { get; set; }
public long ChatId { get; set; }
public string ChatUsername { get; set; }
public string Template { get; set; }
public TextMatchRule Rule { get; set; }
}