This repo contains contracts projects for KitX Project
.
dotnet add package KitX.Contract.CSharp
Define two classes, Identity.cs
and Controller
for example, and inherited from IIdentityInterface
and IController
.
using KitX.Contract.CSharp;
public class Identity : IIdentityInterface
...
using KitX.Contract.CSharp;
public class Controller : IController
...
Then realize all methods.