mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-10-31 07:52:37 +01:00
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; }
|
|||
|
}
|
|||
|
}
|