mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
14 lines
231 B
C#
14 lines
231 B
C#
using System;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
public enum SubscriptionNotificationType
|
|
{
|
|
NONE,
|
|
SUBSCRIPTION_IN_GRACE_PERIOD,
|
|
SUBSCRIPTION_EXPIRED,
|
|
SUBSCRIPTION_ON_HOLD,
|
|
SUBSCRIPTION_RECOVERED,
|
|
SUBSCRIPTION_CANCELED
|
|
}
|