8 lines
		
	
	
	
		
			196 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			196 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Foxchat.Core.Database;
 | 
						|
 | 
						|
public class Instance
 | 
						|
{
 | 
						|
    public int Id { get; init; }
 | 
						|
    public string PublicKey { get; set; } = null!;
 | 
						|
    public string PrivateKey { get; set; } = null!;
 | 
						|
}
 |