Ayush-projects / team3

0 stars 0 forks source link

IUserPasswordConfiguration #6

Open Ayush-projects opened 1 year ago

Ayush-projects commented 1 year ago

using System;

namespace BankSystemConfigurationModule { public interface IUserPasswordConfiguration : IConfiguration { string UserName { get; set; } string Password { get; set; } } }