Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 506 Bytes

README.md

File metadata and controls

34 lines (21 loc) · 506 Bytes

About

This repo contains contracts projects for KitX Project.

Usage

KitX.Contract.CSharp

Install

dotnet add package KitX.Contract.CSharp

Use

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.