15 lines
250 B
C#
15 lines
250 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Habitica.Todoist.Integration.Model.Storage.Enum
|
|
{
|
|
public enum TodoAction
|
|
{
|
|
Add = 1,
|
|
Update = 2,
|
|
Complete = 3,
|
|
Delete = 4
|
|
}
|
|
}
|