11 lines
224 B
C#
11 lines
224 B
C#
namespace rPiNVR.Models
|
|
{
|
|
public class Camera
|
|
{
|
|
public int id { get; set; }
|
|
public string name { get; set; }
|
|
|
|
public Camera (int id, string name) { this.id = id; this.name = name;}
|
|
}
|
|
}
|