20 lines
		
	
	
		
			468 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			468 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Abstractions.DomainObjects;
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace Core.DomainObjects {
 | |
|   public class FormItem : DomainObjectBase<FormItem> {
 | |
|     public string? Title { get; set; }
 | |
| 
 | |
|     public string? Optional { get; set; }
 | |
|     public string? PlaceHolder { get; set; }
 | |
| 
 | |
|     public override int GetHashCode() {
 | |
|       throw new NotImplementedException();
 | |
|     }
 | |
|   }
 | |
| }
 |