mirror of https://github.com/Sonarr/Sonarr
12 lines
201 B
C#
12 lines
201 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
|
|||
|
namespace NzbDrone.Web.Models
|
|||
|
{
|
|||
|
public class TestModel
|
|||
|
{
|
|||
|
public int Number { get; set; }
|
|||
|
}
|
|||
|
}
|