mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-31 11:24:23 +02: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; }
|
||
|
}
|
||
|
}
|