All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- Created Dockerfile for packing up API and Web projects as Docker image
9 lines
124 B
C#
9 lines
124 B
C#
|
|
namespace YABA.Models.Interfaces
|
|
{
|
|
public interface IIdentifiable
|
|
{
|
|
public int Id { get; set; }
|
|
}
|
|
}
|