dnsmanager/src/storage/token.cr

14 lines
221 B
Crystal

require "uuid"
class DNSManager::Storage::Token
include JSON::Serializable
property uuid : String
property domain : String
property rrid : UInt32
def initialize(@domain, @rrid)
@uuid = UUID.random.to_s
end
end