File size: 105 Bytes
ca7217f
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
package model

import (
	"time"
)

type TimeTracker struct {
	CreatedAt time.Time
	UpdatedAt time.Time
}