17 lines
290 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataModels.Models
{
public interface ICertModel : IId
{
string Name { get; }
string Path { get; }
int Key_Id { get; }
}
}