aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System/Architecture.cs
blob: 09eedddc1320f6fe3a4fd8ad32843b4025443932 (plain)
1
2
3
4
5
6
7
8
9
namespace MediaBrowser.Model.System
{
    public enum Architecture
    {
        X86 = 0,
        X64 = 1,
        Arm = 2
    }
}