|
@@ -10,10 +10,10 @@ namespace MafiaTelegramBot.Models
|
|
|
public abstract class UpdateModel : ICloneable
|
|
|
{
|
|
|
protected abstract string Name { get; }
|
|
|
- protected long ChatId { get; set; }
|
|
|
- protected long UserId { get; set; }
|
|
|
+ protected long ChatId { get; private set; }
|
|
|
+ protected long UserId { get; private set; }
|
|
|
|
|
|
- public abstract Task<Message> Execute(Update update);
|
|
|
+ protected abstract Task<Message> Execute(Update update);
|
|
|
|
|
|
protected virtual bool Contains(string command)
|
|
|
{
|