20 lines
303 B
C#
20 lines
303 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OF_DL.Enumurations
|
|
{
|
|
public enum MediaType
|
|
{
|
|
PaidPosts = 10,
|
|
Posts = 20,
|
|
Archived = 30,
|
|
Stories = 40,
|
|
Highlights = 50,
|
|
Messages = 60,
|
|
PaidMessages = 70
|
|
}
|
|
}
|