Add project files.
This commit is contained in:
10
Models/Camera.cs
Normal file
10
Models/Camera.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
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;}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user