16 lines
369 B
C#
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; }
|
|
} |