Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectManager/ProjectManager.Backend/Entities/Project.cs
2022-12-18 13:30:02 +01:00

15 lines
430 B
C#

namespace ProjectManager.Backend.Entities;
public class Project {
public string ProjectId { get; set; }
public string OwnerId { get; set; }
public string Name { get; set; }
public int Port { get; set; }
public string ContainerName { get; set; }
public int ProxyId { get; set; } = -1;
public int CertificateId { get; set; } = -1;
}
public class ProjectEdit {
public string Name { get; set; }
}